Example Arrays

The following examples show how elements are referenced in a one-dimensional array with five cells and in a two-dimensional array with fifteen cells.

One-dimensional array

OpnArray[5]

Cell[1]

Cell[2]

Cell[3]

Cell[4]

Cell[5]

Two-dimensional array

Tool[3,5]

Cell[1,1]

Cell[1,2]

Cell[1,3]

Cell[1,4]

Cell[1,5]

Cell[2,1]

Cell[2,2]

Cell[2,3]

Cell[2,4]

Cell[2,5]

Cell[3,1]

Cell[3,2]

Cell[3,3]

Cell[3,4]

Cell[3,5]